home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MIDICraft's MIDINET CD-ROM
/
MIDICraft's MIDINET CD-ROM.iso
/
DOSUTILS
/
KORG
/
FILEI3.HPP
< prev
next >
Wrap
C/C++ Source or Header
|
1996-10-26
|
371b
|
15 lines
#ifndef __FILEI3__
#define __FILEI3__
#include <stdio.h>
int code7to8(unsigned char* s7, int len7, unsigned char* s8);
int code8to7(unsigned char* s8, int len8, unsigned char* s7);
int loaddata7(FILE* f, int pos, int len, unsigned char* data7);
// convert codes to bytes and write to file
int savedata8(FILE* f, unsigned char* data8, int len8);
#endif